home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FLI106C.ZIP;1 / DLGONE.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-12  |  1.4 KB  |  70 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // DialogClass
  8. //
  9.  
  10. #include "fli.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. //
  18. // FusionHelp()
  19. //
  20. // Add fusion help to the element
  21. //
  22. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  23.  
  24. void DialogClass::FusionHelp(int Help)
  25. {
  26.   if (Current)
  27.     Current->FusionHelp=Help;
  28. }
  29.  
  30. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  31. //
  32. // Help()
  33. //
  34. // Add quick help to the element
  35. //
  36. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  37.  
  38. void DialogClass::Help(char *String)
  39. {
  40.   if (Current)
  41.     Current->Help=String;
  42. }
  43.  
  44. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  45. //
  46. // UtilizeMultiTasking()
  47. //
  48. // Turn on the multitasking feature
  49. //
  50. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  51.  
  52. void DialogClass::UtilizeMultiTasking()
  53. {
  54.   MultiTask=1;
  55. }
  56.  
  57. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  58. //
  59. // UtilizeActionFunctions()
  60. //
  61. // Turn on the multitasking "action" function feature
  62. //
  63. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  64.  
  65. void DialogClass::UtilizeActionFunctions()
  66. {
  67.   UseAction=1;
  68. }
  69.  
  70.